type context.cancelCtx

15 uses

	context (current package)
		context.go#L273: func withCancel(parent Context) *cancelCtx {
		context.go#L277: 	c := &cancelCtx{}
		context.go#L289: 	if cc, ok := c.Value(&cancelCtxKey).(*cancelCtx); ok {
		context.go#L341: 	cancelCtx
		context.go#L376: func parentCancelCtx(parent Context) (*cancelCtx, bool) {
		context.go#L381: 	p, ok := parent.Value(&cancelCtxKey).(*cancelCtx)
		context.go#L425: type cancelCtx struct {
		context.go#L435: func (c *cancelCtx) Value(key any) any {
		context.go#L442: func (c *cancelCtx) Done() <-chan struct{} {
		context.go#L457: func (c *cancelCtx) Err() error {
		context.go#L466: func (c *cancelCtx) propagateCancel(parent Context, child canceler) {
		context.go#L533: func (c *cancelCtx) String() string {
		context.go#L540: func (c *cancelCtx) cancel(removeFromParent bool, err, cause error) {
		context.go#L654: 	cancelCtx
		context.go#L774: 		case *cancelCtx: